@font-face {
    font-family: 'test';
    src: url("../fonts/字魂35号-经典雅黑.ttf") format('truetype');
}

.header{
    width: 100%;
    height: 100px;
    background-color: rgba(0,0,0,1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
}
.header-wrap{
    margin: 0 auto;
    width: 1200px;
    font-family: test;
}
/*一级菜单*/
.nav-first-box{
    display: flex;
}
.nav-first-box .header-logo{
    width: 300px;
    line-height: 100px;
}
.nav-first-box .header-logo img:first-child{
    width: 210px;
    height: auto;
    vertical-align: middle;
}

.nav-first-box .header-nav{
    flex: 1;
}
.nav-first-box .header-nav ul{
    display: flex;
    justify-content: flex-end;
}
.nav-first-box .header-nav ul li{
    padding: 0 40px;
}
.nav-first-box .header-nav ul li a{
    color: #ffffff;
    line-height: 98px;
    display: inline-block;
    transition: .5s ease all;
    border-bottom: 2px solid #000000;
    font-size: 20px;
    letter-spacing: 2px;
}

/*二级菜单*/
.nav-second-box{
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #171717;
}
.nav-second-box ul{
    width: 1200px;
    margin: 0 auto;
    padding-left: 380px;
    overflow: hidden;
    box-sizing: border-box;
}
.nav-second-box ul li{
    float: left;
    color: #999;
    line-height: 50px;
    padding-right: 60px;
    cursor: pointer;
    box-sizing: border-box;
}
.nav-second-box ul li:hover{}
.nav-second-box ul li:hover span{
    color: #fff;
}
.nav-second-box ul li span{
    border-left: 2px solid #999;
    padding-left: 10px;
    letter-spacing: 2px;
}

/*三级菜单*/
.nav-third-box{
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    background-color: rgba(34,34,34,1);
    /*height: 0;*/
    overflow: auto;
}
.nav-third-box .types{
    width: 1200px;
    margin: 0 auto;
    padding-left: 380px;
    box-sizing: border-box;
    overflow: hidden;
}
.nav-third-box .types ul{
    overflow: hidden;
}
.nav-third-box .types ul li{
    float: left;
    margin: 30px 0;
    border-right: 1px solid rgba(255,255,255,.1);
    cursor: pointer;
}
.nav-third-box .types ul li:hover div .div-title{
    color: #ffffff;
}
.nav-third-box .types ul li:first-child{
    padding-left: 0;
}
.nav-third-box .types ul li:nth-child(5){
    padding-left: 0;
}
.nav-third-box .types ul li:nth-child(4n){
    border-right: none;
}
.nav-third-box .types ul li>div{
    width: 200px;
}
.nav-third-box .types ul li>div .div-pic{
    text-align: center;
}
.nav-third-box .types ul li>div .div-pic img{
    width: 140px;
    height: 140px;
}
.nav-third-box .types ul li>div .div-title{
    color: #999999;
    text-align: center;
    transition: .5s ease all;
    letter-spacing: 2px;
}

/*代理分类*/
.nav-third-box .types2{
    width: 1200px;
    margin: 0 auto;
    padding-left: 380px;
    box-sizing: border-box;
    overflow: hidden;
}
.nav-third-box .types2 ul{
    float: left;
    width: 200px;
}
.nav-third-box .types2 ul li{
    padding: 10px 5px;
    box-sizing: border-box;
    color: #999999;
    font-size: 12px;
    /*transition: .3s ease-in;*/
}
.nav-third-box .types2 ul li>div{
    border-right: 1px solid rgba(255,255,255,.1);
}
.nav-third-box .types2 ul li>div .div-title{
    color: #ffffff;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    text-indent: 10px;
}
.nav-third-box .types2 ul li>div .div-container{}
.nav-third-box .types2 ul li>div .div-container .div-row{
    line-height: 28px;
    cursor: pointer;
}
.nav-third-box .types2 ul li>div .div-container .div-row:hover{
    color: #ffffff;
}
.nav-third-box .types2 ul li>div .div-container .div-row .div-row-left{
    display: none;
}
.nav-third-box .types2 ul li>div .div-container .div-row .div-row-left img{
    width: 30px;
    height: 30px;
}
.nav-third-box .types2 ul li>div .div-container .div-row .div-row-right{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .3s ease-in;
}
